home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / masdir43.arc / SDLDEBUG.BAT < prev    next >
DOS Batch File  |  1989-06-19  |  1KB  |  47 lines

  1. ECHO OFF
  2. IF EXIST SDLSETUP.TXT GOTO TXTOK
  3. ECHO Unable to locate the text file to use with DEBUG.
  4. ECHO Please run SDLSETUP to create the necessary file.
  5. :NOCHANGE
  6. ECHO * * *
  7. ECHO NO CHANGES HAVE BEEN MADE TO SDL.COM!
  8. pause
  9. GOTO END
  10. :TXTOK
  11. sdl_get F SDLSETUP.TXT
  12. IF %GET% == 0 GOTO NOCHANGE
  13. ECHO W >>SDLSETUP.TXT
  14. ECHO Q >>SDLSETUP.TXT
  15. ECHO Input complete, now updating SDL.COM . . .
  16. DEBUG SDL.COM <SDLSETUP.TXT >DEBUG.TST
  17. IF EXIST DEBUG.TST GOTO OK
  18. ECHO * * *
  19. ECHO Using the DOS DEBUG command appears to have failed!
  20. ECHO DEBUG may not be on a valid disk drive on your system, or
  21. ECHO you may not have a path to DEBUG.  Please check the
  22. ECHO directories on your path for the existence of DEBUG.COM.
  23. ECHO If you can establish a path to DEBUG or copy DEBUG.COM
  24. ECHO to this working area, you can install the changes you
  25. ECHO have just made by entering SDLDEBUG.
  26. GOTO END
  27. :OK
  28. ERASE DEBUG.TST
  29. ECHO * * *
  30. ECHO SDL.COM has been modified.
  31. ECHO Don't forget to COPY your new version of SDL.COM
  32. ECHO to the disk and/or directory with your other DOS
  33. ECHO commands and utilities.
  34. :END
  35. IF EXIST SDL*.TXT ERASE SDL*.TXT
  36. SET GET=
  37. if not exist INSTALL.BAT goto ISMOD
  38. ECHO * * *
  39. Echo Would you like to run INSTALL to copy your modified version of
  40. Echo SDL.COM to the directory of your choice?
  41. SDL_GET N "Enter Y to run INSTALL, N to exit to DOS? "
  42. if errorlevel 89 if not errorlevel 90 INSTALL
  43. :ISMOD
  44. if exist menu.bat menu
  45. ECHO Exiting to DOS ...
  46. 
  47.